home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Source / src / runtime / str.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-24  |  199 b   |  19 lines  |  [TEXT/MPS ]

  1. #ifndef _str_
  2. #define _str_
  3.  
  4.  
  5. #ifdef ANSI
  6.  
  7. mlsize_t string_length(value);
  8. value compare_strings(value, value);
  9.  
  10. #else
  11.  
  12. mlsize_t string_length();
  13. value compare_strings();
  14.  
  15. #endif
  16.  
  17.  
  18. #endif /* _str_ */
  19.